|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IExecutionDescriptor
A descriptor for process instances.
| Method Summary | |
|---|---|
void |
clearParameter(java.lang.String parameterName)
Clears the value of the parameter with the specified name. |
java.lang.String |
getExecutionID()
Returns the ID of the execution sequence being described. |
java.lang.String |
getParameter(java.lang.String parameterName)
Returns the value of the parameter with the specified name or null if no such parameter exists. |
java.lang.String[] |
getParameterNames()
Returns the names of the parameters available to the execution sequence. |
java.lang.String[] |
getParameters(java.lang.String parameterName)
Returns the values of the parameter with the specified name or null if no such parameter exists. |
java.lang.Object |
getService(java.lang.String identifier)
Returns the service selected for the specified identifier or null if no such service exists. |
java.lang.String[] |
getServiceIdentifiers()
Returns the identifiers of all the externally-provided services. |
void |
setParameter(java.lang.String parameterName,
java.lang.String value)
Sets the value of the parameter with the specified name or clears it if the value is null. |
void |
setParameters(java.lang.String parameterName,
java.lang.String[] values)
Sets the values of the parameter with the specified name or clears them if the value is null or empty. |
| Method Detail |
|---|
java.lang.String getExecutionID()
java.lang.String[] getServiceIdentifiers()
java.lang.Object getService(java.lang.String identifier)
throws java.lang.NullPointerException
null if no such service exists.
identifier - The identifier of the service to return.
null if no such service exists.
java.lang.NullPointerException - If the supplied identifier is
null.java.lang.String[] getParameterNames()
java.lang.String getParameter(java.lang.String parameterName)
throws java.lang.NullPointerException
null if no such parameter exists.
parameterName - The name of the parameter to return.
null if no such parameter exists.
java.lang.NullPointerException - If the specified parameter name is
null.
java.lang.String[] getParameters(java.lang.String parameterName)
throws java.lang.NullPointerException
null if no such parameter exists.
parameterName - The name of the parameter to return.
null if no such parameter exists.
java.lang.NullPointerException - If the specified parameter name is
null.
void setParameter(java.lang.String parameterName,
java.lang.String value)
throws java.lang.NullPointerException
null.
parameterName - The name of the parameter to set.value - The value of the parameter with the specified name or
null to clear the value.
java.lang.NullPointerException - If the supplied parameter name is
null.
void setParameters(java.lang.String parameterName,
java.lang.String[] values)
throws java.lang.NullPointerException
null or empty.
parameterName - The name of the parameters to set.values - The values of the parameter with the specified name or
null or to clear the values.
java.lang.NullPointerException - If the supplied parameter name is
null.
void clearParameter(java.lang.String parameterName)
throws java.lang.NullPointerException
parameterName - The name of the parameter to clear.
java.lang.NullPointerException - If the supplied parameter name is
null.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||